home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / findutils.postrm < prev    next >
Encoding:
Text File  |  2007-03-05  |  213 b   |  13 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. if [ "$1" = "purge" ]; then
  5.   if [ -e /var/cache/locate/locatedb ] ; then
  6.     rm /var/cache/locate/locatedb
  7.     rmdir /var/cache/locate/ || true
  8.   fi
  9. fi
  10.  
  11.  
  12. # vim:tabstop=2:expandtab:shiftwidth=2
  13.